class CRPEGraphTextInfo
The CRPEGraphTextInfo class contains information about the text that appears with a graph. This class is used with the methods CRPEJob::GetGraphText, and CRPEJob::SetGraphText.
Data Members
m_graphTitle
| Specifies the main title text that will appear above your graph.
|
m_graphSubTitle
| Specifies the sub title text that will appear directly under the main title.
|
m_graphFootNote
| Specifies the footnote text that will appear under your graph.
|
m_graphGroupsTitle
| Specifies the title of the groups which are being graphed.
|
m_graphSeriesTitle
| Specifies the title of the series which is being graphed.
|
m_graphXAxisTitle
| Specifies the title text that will appear for the X axis. Not valid for Pie graphs.
|
m_graphYAxisTitle
| Specifies the title text that will appear for the Y axis. Not valid for Pie graphs.
|
m_graphZAxisTitle
| Specifies the title text that will appear for the Z axis. This value is only valid for 3D graphs.
|
Constructor CRPEGraphTextInfo::CRPEGraphTextInfo
Constructor Default Syntax
CRPEGraphTextInfo ();
Constructor Syntax
CRPEGraphTextInfo (graphSubTitle CHAR(*) : NULL, graphFootNote CHAR(*) :
NULL, graphGroupsTitle CHAR(*) : NULL, graphSeriesTitle CHAR(*) : NULL,
graphXAxisTitle CHAR(*) : NULL, graphYAxisTitle CHAR(*) : NULL,
graphZAxisTitle CHAR(*) : NULL);
Constructor Parameters
graphTitle
| Specifies the main title text that will appear above your graph. Assigns this title to the CRPEGraphTextInfo::m_graphTitle member variable.
|
graphSubTitle
| Specifies the sub title text that will appear directly under the main title. Assigns this title to the CRPEGraphTextInfo::m_graphSubTitle member variable.
|
graphFootNote
| Specifies the footnote text that will appear under your graph. Assigns this text to the CRPEGraphTextInfo::m_graphFootNote member variable.
|
graphGroupsTitle
| Specifies the title of the groups which are being graphed. Assigns this title to the CRPEGraphTextInfo::m_graphGroupsTitle member variable.
|
graphSeriesTitle
| Specifies the title of the series which is being graphed. Assigns this title to the CRPEGraphTextInfo::m_graphSeriesTitle member variable.
|
graphXAxisTitle
| Specifies the title text that will appear for the X axis. Not valid for Pie graphs. Assigns this title to the CRPEGraphTextInfo::m_graphXAxisTitle member variable.
|
graphYAxisTitle
| Specifies the title text that will appear for the Y axis. Not valid for Pie graphs. Assigns this title to the CRPEGraphTextInfo::m_graphYAxisTitle member variable.
|
graphZAxisTitle
| Specifies the title text that will appear for the Z axis. Only valid for 3D graphs. Assigns this title to the CRPEGraphTextInfo::m_graphZAxisTitle member variable.
|
Remarks
Constructs a CRPEGraphTextInfo class object. Call the constructor with no parameters to allow the Class Library to initialize all member variables with default values. Pass parameters to the constructor to assign specific values to each member variable.
Related Report Engine Calls
PEGraphAxisInfo
PEGraphOptionInfo
PEGraphTypeInfo